home *** CD-ROM | disk | FTP | other *** search
/ Megahits 5 / Megahits 5 (1994)(GTI - Rhein-Main-Soft)(DE)(Disc 2 of 2)[!].iso / archive / conv / make3d.lha / Make3DpicFromBuffers.ifx < prev    next >
Text File  |  1994-01-13  |  827b  |  51 lines

  1. /*
  2.  * Make3DpicFromSwap v1.0
  3.  * Arexx Macro for use with ImageFX
  4.  *
  5.  * Makes a picture 3D for use with Red & Blue glasses.
  6.  * The Left and Right eye images must be in the Main and Swap buffers.
  7.  * 
  8.  *
  9.  * For multiple image processing use IMP and put this script in Proc.
  10.  * 
  11.  * Written By Torgeir Holm ©1994
  12.  *
  13.  */
  14.  
  15. OPTIONS RESULTS
  16.  
  17. DrawMode Normal
  18. Blend 100
  19. EdgeMode Normal 0
  20. FillMode Solid 0 0 0 SMOOTH
  21.  
  22.  
  23. /* Make Red & Cyan buffers*/
  24.  
  25. Buffer2Alpha
  26. ClearBuffer 0 0 0 FORCE
  27. ActiveColor 4
  28. MenuPalette
  29. SetPalette '-1' 0 255 255
  30. MenuToolbox
  31. AlphaChannel Frisket
  32. FloodFill 50 50 30
  33. Brightness '64'
  34. Swap
  35. Buffer2Alpha
  36. ClearBuffer 0 0 0 FORCE
  37. ActiveColor 5
  38. MenuPalette
  39. SetPalette '-1' 255 0 0
  40. MenuToolbox
  41. FloodFill 50 50 30
  42. Brightness '64'
  43.  
  44.  
  45. /* Combine the Images to make 3D image and free alpha channel memory*/
  46.  
  47. Add
  48. KillAlpha
  49.  
  50. EXIT
  51.